home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CD ROM Paradise Collection 4
/
CD ROM Paradise Collection 4 1995 Nov.iso
/
win
/
esftt20.zip
/
REGISTER.BAT
< prev
next >
Wrap
DOS Batch File
|
1995-01-18
|
2KB
|
30 lines
echo off
cls
echo ┌────────────────────────────────────────────────────────────────────────┐
echo │ We are now ready to print a copy of the registration form for the ESF's│
echo │ TrueType Collection 1. Registered users receive a free font newsletter,│
echo │ additional bonus fonts, free CompuServe account with $15 access credit,│
echo │ access to technical support, and can purchase our giant 202 outline │
echo │ TrueType collection at the special price of $59.50! │
echo │ │
echo │ Make sure your printer is on and ready to run. This batch file assumes │
echo │ your printer is attached to LPT1:. If you use a different printer port │
echo │ hit Ctrl-C now to stop this batch file. Then restart the batch file, │
echo │ passing it the printer port you do use: │
echo │ │
echo │ REGISTER LPT2 or REGISTER COM1 │
echo │ │
echo │ If you *don't* want to print this, press the Ctrl-C key now to abort │
echo │ this batch file and return to INSTALL. │
echo └────────────────────────────────────────────────────────────────────────┘
pause
echo Printing a copy of ESF's TrueType Collection 1 Registration form....
if "%1"=="" goto DOLPT1
copy register.doc %1:
goto done
:DOLPT1
copy register.doc LPT1:
:done